You are here: Programming guide > COM SDK fundamentals > Creating a user interface extension > About the interface extension events

About the interface extension events

The events available from the interface extension designer are organized into categories described in the following topics:

General interface extension events

About the common object events

About work area workflow events

About the working copy events

About the document events

About document workflow events

About security events

None of these events are required. You can choose to extend them depending on the functionality you need.

Two events are created automatically by the interface extension designer. Any changes you make to these events will be overwritten by the designer:

AMUIExtension.GetUIPages()
AMUIExtension.GetWizardPages()

Example

Private Sub AMUIExtension_GetUIPages(ByVal Pages As UIExtDesigner.IAMFormCollection)
Pages.Add New frmNotUsingDataBinding
Pages.Add New frmUsingDataBinding
Pages.Add New frmLikeMyAutoPage
End Sub

www.bluecieloecm.com